home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 26.zip / BS1 part 26 / Aztec C v5.2a disk 4.adf / 204inc_i.lzh / graphics / gfx.i < prev    next >
Text File  |  1991-03-14  |  928b  |  53 lines

  1.     IFND    GRAPHICS_GFX_I
  2. GRAPHICS_GFX_I    SET    1
  3. **
  4. **    $Filename: graphics/gfx.i $
  5. **    $Release: 2.04 $
  6. **    $Revision: 37.0 $
  7. **    $Date: 91/01/07 $
  8. **
  9. **
  10. **
  11. **    (C) Copyright 1985,1986,1987,1988,1989 Commodore-Amiga, Inc.
  12. **        All Rights Reserved
  13. **
  14.  
  15.     IFND    EXEC_TYPES_I
  16.     include 'exec/types.i'
  17.     ENDC
  18.  
  19. BITSET        equ $8000
  20. BITCLR        equ 0
  21. AGNUS        equ 1
  22. DENISE        equ 1
  23.  
  24.     STRUCTURE    BitMap,0
  25.     WORD    bm_BytesPerRow
  26.     WORD    bm_Rows
  27.     BYTE    bm_Flags
  28.     BYTE    bm_Depth
  29.     WORD    bm_Pad
  30.     STRUCT  bm_Planes,8*4
  31.     LABEL   bm_SIZEOF
  32.  
  33.    STRUCTURE   Rectangle,0
  34.       WORD  ra_MinX
  35.       WORD  ra_MinY
  36.       WORD  ra_MaxX
  37.       WORD  ra_MaxY
  38.    LABEL    ra_SIZEOF
  39.  
  40.    STRUCTURE   Rect32,0
  41.       LONG  r32_MinX
  42.       LONG  r32_MinY
  43.       LONG  r32_MaxX
  44.       LONG  r32_MaxY
  45.    LABEL    r32_SIZEOF
  46.  
  47.    STRUCTURE   tPoint,0
  48.       WORD  tpt_x
  49.       WORD  tpt_y
  50.    LABEL    tpt_SIZEOF
  51.  
  52.     ENDC    ; GRAPHICS_GFX_I
  53.